Get Tenant Keys
GET /api/v1/products/tenants/{tenantId}/keys
Description
Retrieve keys for a specific tenant.
Path Parameters
| Name | Type | Description |
|---|---|---|
tenantId | string | The tenant ID (path) |
Query Parameters
| Name | Type | Description |
|---|---|---|
keyByStatuses | string | Allowed fields separated by comma: ACTIVE, DISABLED, REVOKED, REFRESHED, EXPIRED |
order | string | Available values: ASC, DESC |
page | string | Page number for pagination |
limit | string | Number of items per page |
Example
GET /api/v1/products/tenants/{tenantId}/keys?keyByStatuses=ACTIVE,DISABLED&order=ASC&page=1&limit=10
Response Code: 200 - OK
Description
Successful response.
Headers
| Content-Type | Value |
|---|---|
| apiKey | {{apiKey}} |
Body (raw)
None
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
CURL REQUEST
curl --request GET \
--url /api/v1/products/tenants/{tenantId}/keys \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!